home *** CD-ROM | disk | FTP | other *** search
- Copyright (C) 1988 by Robert W. Babcock and WSS Division of DDC
- All Rights Reserved
-
-
- WSSINDEX Tips
- Version 3.37 for WSSINDEX version 3.37
-
- If you have found any clever ways of using WSSINDEX, or any other
- programs which increase the program's utility for you, please
- report them to me and I will add them to the next version of this
- list. Some commonly asked questions are also answered in this
- list.
-
- 1. If you have a tape backup system which can "fool" DOS into
- thinking it is a disk drive, you can probably process it with
- WSSINDEX. For example, I found that I could read directories
- from a Tallgrass tape unit if I loaded the Tallgrass TMS
- program first.
-
- 2. The core resident public domain utility CUTPAST3 can be used
- to cut a line from the viewfile display for pasting into the
- new comment field. I do not guarantee compatibility with this
- program, but it seems to work on my system. The authors were
- kind enough to send me a copy of the latest version, including
- source code, so let me know if you want source code.
-
- 3. When asked to specify a disk name for output, you can instead
- specify one of the special names DOS reserves for devices such
- as CON, PRT, PRN, LPT1, LPT2 or AUX. (Exactly what names are
- reserved by DOS may be system dependent). You will be warned
- that the "file" already exists; just reply Y when WSSINDEX
- asks for permission to overwrite. The most obvious use for
- this feature is to send output to a printer not connected to
- parallel port 1, although there are probably other ways to do
- this as well. If you direct output to CON, you should
- probably configure to use DOS calls for other screen I/O.
-
- 4. You may have certain ARC files which you don't want WSSINDEX
- to process, even though you do want to extract information
- from most ARC files. In this case, you can change the
- extension of the file (say to ARK) so that WSSINDEX doesn't
- recognize it. The recent versions of ARC, ARCE and PKXARC all
- accept an optional extension if the file name is not standard.
-
- 5. I find that a large library of floppy disks is easier to
- maintain if I assign a unique serial number to each disk and
- make it the leading characters of the volume name. Not only
- is it easier to look for a disk which has both a unique number
- and a descriptive name, but it is easy to jot down the disk
- number whenever I update a disk, so I have a reasonably
- complete list of disks which have been changed and need to be
- re-entered into the database.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 6. The predefined category strings triggered by hitting
- Alt+letter can be used just about anywhere a character string
- is required. For example, if you have several databases, you
- can put their names into category strings and use a simple Alt
- keystroke to enter their names when you want to read them in.
- Or, if you want to select files by category, you can use the
- same keystroke you used to enter the category in the first
- place.
-
- 7. If you are a software "collector", you may eventually run into
- the 16K file limit, or run out of memory, or just suffer from
- slow processing of large databases. If you foresee any chance
- of needing to use multiple databases in the future, you are
- better off setting them up at the start. It is simple to
- merge two databases if you want to process everything at once,
- but the only way to split a database would be to remove
- selected disks from the database one at a time.
-
- 8. The configuration files are not guaranteed to be compatible
- from version to version, although I try to make it possible to
- read and use most of the information in an obsolete format
- configuration file. You should get an error message if you
- read an old, incompatible configuration file, but due to a bug
- in all 2.xx versions, the message never appeared. You should
- always review the configuration when trying out a new release
- of WSSINDEX.
-
- 9. Using a RAM disk which runs in conventional memory will not
- improve the performance of WSSINDEX since everything is done
- in core. It will merely reduce the amount of memory
- available, and hence the number of disks which can be indexed.
-
- 10.With the addition of the option to extract information from
- ARC files, you may want to re-index all disks which include
- such files. Here's a simple way to generate a list of all
- disks which contain ARC files:
- 1. Configure WSSINDEX to print only the volume name.
- 2. Print your database to disk file ARCONLY.PRN, with no
- headers, sorted by volume name, selecting filename *.ARC.
- 3. Run the following BASIC program to strip off file names
- and eliminate duplicate volume names (it will terminate
- with an error message when it hits the end of file).
- 10 OLD$=""
- 20 OPEN "I",#1,"ARCONLY.PRN"
- 40 LINE INPUT #1,V$
- 50 V$=MID$(V$,15)
- 60 IF V$<>OLD$ THEN LPRINT V$ : OLD$=V$
- 70 GOTO 40
-
- 11.If you find that you see all the dummy .ID entries for volumes
- and subdirectories, and you don't want them, you can include
- .ID in the list of configured exceptions (don't forget to ask
- that it be used) or in a one-shot rejection list (selection
- option 11).
-
-
-
-
-
-
-
-
-
-
-
-
- 12.If you want to index only part of your hard disk, and have the
- proper DOS version (3.1 or higher I believe), you can use the
- SUBST command to assign a disk mode letter to a subdirectory
- and index everything from that level down. The volume id will
- still come from the root subdirectory, but you can use the
- rename option to change the name.
-
- Robert W. Babcock
- WSS Division of DDC
- 4 Reeves Road
- Bedford, MA 01730
- USA
- 617-275-1183